Documents for PDF .NET Edition
GrapeCity.Documents.Imaging Assembly / GrapeCity.Documents.Common Namespace / StructList<T> Class / InsertRange Method
The zero-based index at which the new elements should be inserted.
The collection whose elements should be inserted into the StructList<T>.

In This Topic
    InsertRange Method (StructList<T>)
    In This Topic
    Inserts the elements of a collection into the StructList<T> at the specified index.
    Syntax
    'Declaration
     
    Public Sub InsertRange( _
       ByVal index As System.Integer, _
       ByVal collection As System.Collections.Generic.IEnumerable(Of T) _
    ) 
    public void InsertRange( 
       System.int index,
       System.Collections.Generic.IEnumerable<T> collection
    )

    Parameters

    index
    The zero-based index at which the new elements should be inserted.
    collection
    The collection whose elements should be inserted into the StructList<T>.
    See Also